home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / compress / lzhsourc.lzh / LZH.SRC / GOODPUTC.H < prev    next >
Text File  |  1992-07-02  |  128b  |  10 lines

  1.  
  2. int file_putc(char c, FILE *f)
  3.  {
  4.    putc(c,f);
  5.    if (ferror(f)) return EOF;
  6.    return 0;
  7.  }
  8. #define putc file_putc
  9.  
  10.